На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:
математика
поиск с пропусками
общая лексика
поисковый механизм, поисковая машина, поисковая служба
программа, позволяющая искать информацию в Web по ключевым словам, темам и т.д. (AltaVista, Excite, Google, HotBot, Infoseek, Lycos, Magellan, Rambler, Yahoo!)
общая лексика
линейный поиск, последовательный перебор
поиск, начинающийся с первого элемента и заканчивающийся, когда искомый элемент найден либо достигнут конец списка
математика
линейный поиск
Смотрите также
In computer science, a skip list (or skiplist) is a probabilistic data structure that allows average complexity for search as well as average complexity for insertion within an ordered sequence of elements. Thus it can get the best features of a sorted array (for searching) while maintaining a linked list-like structure that allows insertion, which is not possible with a static array. Fast search is made possible by maintaining a linked hierarchy of subsequences, with each successive subsequence skipping over fewer elements than the previous one (see the picture below on the right). Searching starts in the sparsest subsequence until two consecutive elements have been found, one smaller and one larger than or equal to the element searched for. Via the linked hierarchy, these two elements link to elements of the next sparsest subsequence, where searching is continued until finally searching in the full sequence. The elements that are skipped over may be chosen probabilistically or deterministically, with the former being more common.